home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsfont0.c < prev    next >
C/C++ Source or Header  |  1997-03-10  |  4KB  |  122 lines

  1. /* Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsfont0.c */
  20. /* Composite font operations for Ghostscript library */
  21. #include "memory_.h"
  22. #include "gx.h"
  23. #include "gserrors.h"
  24. #include "gsstruct.h"
  25. #include "gxfixed.h"
  26. #include "gsmatrix.h"
  27. #include "gxdevice.h"
  28. #include "gxdevmem.h"
  29. #include "gxchar.h"
  30. #include "gxfcache.h"            /* gs_font_dir */
  31. #include "gxfont.h"
  32. #include "gxfont0.h"
  33.  
  34. /* Structure descriptor */
  35. private struct_proc_enum_ptrs(font_type0_enum_ptrs);
  36. private struct_proc_reloc_ptrs(font_type0_reloc_ptrs);
  37. public_st_gs_font_type0();
  38. #define pfont ((gs_font_type0 *)vptr)
  39. private ENUM_PTRS_BEGIN(font_type0_enum_ptrs) ENUM_PREFIX(st_gs_font, gs_type0_data_max_ptrs);
  40.     ENUM_PTR(0, gs_font_type0, data.Encoding);
  41.     ENUM_PTR(1, gs_font_type0, data.FDepVector);
  42.     case 2:
  43.         switch ( pfont->data.FMapType )
  44.           {
  45.           case fmap_SubsVector:
  46.             ENUM_RETURN_CONST_STRING_PTR(gs_font_type0,
  47.                          data.SubsVector);
  48.           case fmap_CMap:
  49.             ENUM_RETURN_PTR(gs_font_type0, data.CMap);
  50.           default:
  51.             ENUM_RETURN(0);
  52.           }
  53. ENUM_PTRS_END
  54. private RELOC_PTRS_BEGIN(font_type0_reloc_ptrs) RELOC_PREFIX(st_gs_font);
  55.     RELOC_PTR(gs_font_type0, data.Encoding);
  56.     RELOC_PTR(gs_font_type0, data.FDepVector);
  57.     switch ( pfont->data.FMapType )
  58.       {
  59.       case fmap_SubsVector:
  60.         RELOC_CONST_STRING_PTR(gs_font_type0, data.SubsVector);
  61.         break;
  62.       case fmap_CMap:
  63.         RELOC_PTR(gs_font_type0, data.CMap);
  64.         break;
  65.       default:
  66.         ;
  67.       }
  68. RELOC_PTRS_END
  69. #undef pfont
  70.  
  71. /* Adjust a composite font by concatenating a given matrix */
  72. /* to the FontMatrix of all descendant composite fonts. */
  73. private int
  74. gs_type0_adjust_matrix(gs_font_dir *pdir, gs_font_type0 *pfont,
  75.   const gs_matrix *pmat)
  76. {    gs_font **pdep = pfont->data.FDepVector;
  77.     uint fdep_size = pfont->data.fdep_size;
  78.     gs_font **ptdep;
  79.     uint i;
  80.     /* Check for any descendant composite fonts. */
  81.     for ( i = 0; i < fdep_size; i++ )
  82.       if ( pdep[i]->FontType == ft_composite )
  83.         break;
  84.     if ( i == fdep_size )
  85.         return 0;
  86.     ptdep = gs_alloc_struct_array(pfont->memory, fdep_size, gs_font *,
  87.                       &st_gs_font_ptr_element,
  88.                       "gs_type0_adjust_font(FDepVector)");
  89.     if ( ptdep == 0 )
  90.         return_error(gs_error_VMerror);
  91.     memcpy(ptdep, pdep, sizeof(gs_font *) * fdep_size);
  92.     for ( ; i < fdep_size; i++ )
  93.       if ( pdep[i]->FontType == ft_composite )
  94.     {    int code = gs_makefont(pdir, pdep[i], pmat, &ptdep[i]);
  95.         if ( code < 0 )
  96.             return code;
  97.     }
  98.     pfont->data.FDepVector = ptdep;
  99.     return 0;
  100. }
  101.  
  102. /* Finish defining a composite font, */
  103. /* by adjusting its descendants' FontMatrices. */
  104. int
  105. gs_type0_define_font(gs_font_dir *pdir, gs_font *pfont)
  106. {    const gs_matrix *pmat = &pfont->FontMatrix;
  107.     /* Check for the identity matrix, which is common in root fonts. */
  108.     if ( pmat->xx == 1.0 && pmat->yy == 1.0 &&
  109.          pmat->xy == 0.0 && pmat->yx == 0.0 &&
  110.          pmat->tx == 0.0 && pmat->ty == 0.0
  111.        )
  112.         return 0;
  113.     return gs_type0_adjust_matrix(pdir, (gs_font_type0 *)pfont, pmat);
  114. }
  115.  
  116. /* Finish scaling a composite font similarly. */
  117. int
  118. gs_type0_make_font(gs_font_dir *pdir, const gs_font *pfont,
  119.   const gs_matrix *pmat, gs_font **ppfont)
  120. {    return gs_type0_adjust_matrix(pdir, (gs_font_type0 *)*ppfont, pmat);
  121. }
  122.